home *** CD-ROM | disk | FTP | other *** search
- /**************************************************************************
- * FRMQCHOI.C - frm_qchoice() function.
- *************************************************************************/
-
- #include "gemfintl.h"
-
- #ifdef GEMFAST_PROTOS
- short frm_qchoice(char *buttons, char *fmt, ...)
- #else
- short frm_qchoice(buttons, fmt)
- char *buttons;
- char *fmt;
- #endif
- {
- va_list args;
- short rv;
-
- va_start(args, fmt);
- rv = frm_vprintf(FRM_NORMAL, buttons, fmt, args);
- va_end(args);
-
- return rv;
- }
-
-